From 9270071565192b56883bf4bf6ac13156a739cb25 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Mon, 9 Apr 2007 18:57:35 +0000 Subject: [PATCH] Disable debug statements. --- vitosmt.c | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/vitosmt.c b/vitosmt.c index 1aa1816f6..f2b6f2362 100644 --- a/vitosmt.c +++ b/vitosmt.c @@ -155,15 +155,19 @@ vitosmt_read(void) MYNAME, __LINE__, strerror(errno) ); break; } -fprintf(stderr, "Looptop %d\n", ftell(infile)); - +#if 0 + fprintf(stderr, "Looptop %d\n", ftell(infile)); +#endif latrad =ReadDouble(infile); /* WGS84 latitude in radians */ lonrad =ReadDouble(infile); /* WGS84 longitude in radians */ elev =ReadDouble(infile); /* elevation in meters */ -fprintf(stderr, "before %d\n", ftell(infile)); +#if 0 + fprintf(stderr, "before %d\n", ftell(infile)); +#endif timestamp =ReadRecord(infile,5); /* UTC time yr/mo/dy/hr/mi */ -fprintf(stderr, "%d latrad %f/%f ele %f\n", ftell(infile),latrad, DEG(latrad), elev); - +#if 0 + fprintf(stderr, "%d latrad %f/%f ele %f\n", ftell(infile),latrad, DEG(latrad), elev); +#endif seconds =ReadDouble(infile); /* seconds */ speed =ReadDouble(infile); /* speed in knots */ course =ReadDouble(infile); /* course in degrees */ -- 2.30.2